home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / ODFDev / ODF / Examples / Hello / Other / HelloStr.fr < prev    next >
Encoding:
Text File  |  1995-11-09  |  1.1 KB  |  39 lines  |  [TEXT/MPS ]

  1. //    File:        HelloStr.fr
  2. //
  3. //    Contains:    Common (Platform independent) resources for Hello part
  4. //
  5. //    Copyright:    © 1995 by Apple Computer, Inc., all rights reserved.
  6.  
  7. #ifndef FWRESFIL_K
  8. #include "FWResFil.k"
  9. #endif
  10.  
  11. #ifndef HELLODEF_H
  12. #include "HelloDef.h"
  13. #endif
  14.  
  15. //----------------------------------------------------------------------------
  16. //    Strings for Hello Menu
  17. //----------------------------------------------------------------------------
  18. resource FW_kMULTISTRING (kHelloPartStrings)
  19. {
  20.     kHelloMenuString,     "Hello";
  21.     kFirstMenuString,    "Greetings";
  22.     kSecondMenuString,    "Regards";
  23.     kFirstString,        "Welcome to ODF";
  24.     kSecondString,        "Farewell to ";
  25.     kMacString,            "you";
  26.     kWinString,            "you";
  27.     kBlankString,        "This part intentionally left blank";
  28. }
  29.  
  30. //----------------------------------------------------------------------------
  31. //    Strings for About box
  32. //----------------------------------------------------------------------------
  33. resource FW_kMULTISTRING (kAboutBoxStrings)
  34. {
  35.     kAboutMenuString,    "About Hello...";
  36.     kHelloPartString,    "Hello Part";
  37.     kCreditString,        "Created with PartMaker";
  38. }
  39.